home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mnogosearch_overflows.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # ref: http://www.securiteam.com/securitynews/5BP0G0AAAY.html
  5. if(description)
  6. {
  7.  script_id(11735);
  8.  script_version ("$Revision: 1.4 $");
  9.  
  10.  
  11.  name["english"] = "Mnogosearch overflows";
  12.  script_name(english:name["english"], francais:name["francais"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running the mnogosearch search.cgi CGI
  16. program.
  17.  
  18. There is a flaw in older versions of this software which may allow
  19. an attacker to gain a shell on this host.
  20.  
  21. Solution : Disable this CGI if you do not use it, or upgrade to the latest
  22. version.
  23.  
  24. See also : http://www.securiteam.com/securitynews/5BP0G0AAAY.html
  25.  
  26. Risk factor : High";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks for search.cgi";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  39.  
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "no404.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55. port = get_http_port(default:80);
  56.  
  57. if(!get_port_state(port))exit(0);
  58.  
  59.  
  60. foreach d (cgi_dirs()) {
  61.  req = http_get(item:d + "/search.cgi" , port : port);
  62.  res = http_keepalive_send_recv(port:port, data:req);
  63.  if( "mnoGoSearch" >< res ) {
  64.      security_hole(port);
  65.     exit(0);
  66.     }
  67. }
  68.